跳到主要内容

Fortran 格式化输出的其他技巧

write(*, '3(1X,F5.2)') 1, 2, 3
write(*, '3I3') 1, 2, 3
write(*, '("3+4=", I2)') 3+4
fmtstr = '(I2)'
write(*, fmtstr) 3
print '(A10)', 'Hello'
read(*, '(A80)') string